Hi everyone,
I want to calculate indicators for my own data. Inside handle_data
we can use history()
which seems to be essential for making many indicators.
If I want to calculate indicators before running handle_data
or I want to calc my indicators inside pre_func
, as we cannot use history()
outside handle_data
, then what can we use to replace the use of history()
?
Thanks